home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 176-200 / 183 / mklib / edlib / makefile < prev    next >
Makefile  |  1995-03-13  |  531b  |  20 lines

  1. # makefile for the edlib library source directory
  2. # copyright 1988 Edwin Hoogerbeets
  3. #
  4. # make sure that lb is in your path or make will give you an exec failure
  5.  
  6. .c.o:
  7.         cc +L -o $*.o $*.c
  8.  
  9. OBJS= bintoint.o dectoint.o getopt.o hextoint.o isbdigit.o \
  10.       iscsym.o iscsymf.o isodigit.o stolower.o stoupper.o  \
  11.       strcspn.o strpbrk.o strpos.o strrpos.o strspn.o      \
  12.       strtok.o toint.o strrpbrk.o stricmp.o strnicmp.o
  13.  
  14. ed32.lib: $(OBJS)
  15.         lb ed32.lib $(OBJS)
  16.  
  17. test: test.o
  18.         ln test.o -led -lc -o test
  19.  
  20.